ReverseBytesOf
Type
statement
Summary
Reverse binary data
Syntax
reverse <Target>
Description
Reverses the order of bytes in the Target.
Parameters
Name | Type | Description |
---|---|---|
Target | A binary data string |
Examples
variable tForward
put 5 random bytes into tForward
variable tReversed
put tForward into tReversed
reverse tReversed
expect that the first byte of tForward is the last byte of tReversed
expect that the last byte of tForward is the first byte of tReversed